.banner {
    height: 330px;
    position: relative;
    overflow: hidden;
}

.banner .bimg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.banner .text {
    display: block;
    z-index: 4;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}

.banner .text h1 {
    color: white;
}

.banner .text a {
    color: #FFF;
}

.Box1{
    padding: 50px 0;
}
.Box1.container-md.row{
    margin: 0 auto ;
}


.Box1 .cpbox{
    height: fit-content; 
    margin-bottom: 30px;
}
.Box1 .cpbox > div{
    border: 1px solid #ddd;
    transition: 0.3s;
}
.Box1 .cpbox:hover > div{
    border: 1px solid #F08519;
}
.Box1 .cpbox .img,
.Box1 .cpbox .title,
.Box1 .cpbox .more{
    display: block;
}
.Box1 .cpbox .img div{
    position: relative;
    width: 100%;
    padding-top: 100%;  
    overflow: hidden;
}
.Box1 .cpbox .img div img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 90%;
    height: 90%;
    object-fit: contain;
    transition: 0.3s;
} 
.Box1 .cpbox:hover .img div img{
    transform: translate(-50%,-50%) scale(1.1);
}
.Box1 .cpbox .title{
    width: 90%;
    margin: 0 auto;
    padding: 20px 0;
    border-top: 1px solid #ddd;
}
.Box1 .cpbox .title h6{
    color: #333;
    transition: 0.3s;
}
.Box1 .cpbox:hover .title h6{
    color:  #F08519;
}

.Box1 .cpbox .more button{
    background-color: #333;
    color: white;
    width: 100%;
    border: none;
    padding: 10px 20px;
    text-align: left;
    transition: 0.3s;
}
.Box1 .cpbox:hover .more button{
    background-color: #F08519;
}